home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / kdm.preinst < prev    next >
Text File  |  2008-10-24  |  205b  |  24 lines

  1. #! /bin/sh -e
  2.  
  3. case "$1" in
  4.  
  5.     upgrade)
  6.     ;;
  7.  
  8.     install)
  9.     ;;
  10.  
  11.     abort-upgrade)
  12.     ;;
  13.  
  14.     *)
  15.         echo "preinst called with unknown argument \`$1'" >&2
  16.         exit 1
  17.     ;;
  18.  
  19. esac
  20.  
  21.  
  22.  
  23. exit 0
  24.